20. Encapsulation in C++
Encapsulation Definition
SOLUTION:
The notion that data and logic can be packaged together and passed around within a program as a single object.Keyword const
SOLUTION:
Ensure the user cannot do anything to change the private attributes of the object.Setter function